AuthenticateResponse

data class AuthenticateResponse(val redirectUrl: String, val message: String? = null, var passkeyBindingToken: String? = null)

A response returned after successfully authenticating.

Constructors

Link copied to clipboard
fun AuthenticateResponse(redirectUrl: String, message: String? = null, passkeyBindingToken: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val message: String? = null

An optional displayable message defined by policy returned by the cloud on success

Link copied to clipboard

An optional one-time-token returned from successful redeemOtp that may be redeemed for a credential_binding_link from the /credential-binding-jobs endpoint.

Link copied to clipboard

The redirect URL that originates from the /authorize call's redirect_uri parameter. The OAuth2 authorization code and the state parameter of the /authorize call are attached with the "code" and "state" parameters to this URL.